type runtime.gcBitsArena
12 uses
runtime (current package)
mheap.go#L2886: type gcBitsArena struct {
mheap.go#L2890: next *gcBitsArena
mheap.go#L2896: free *gcBitsArena
mheap.go#L2897: next *gcBitsArena // Read atomically. Write atomically under lock.
mheap.go#L2898: current *gcBitsArena
mheap.go#L2899: previous *gcBitsArena
mheap.go#L2904: func (b *gcBitsArena) tryAlloc(bytes uintptr) *gcBits {
mheap.go#L2925: head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
mheap.go#L3016: func newArenaMayUnlock() *gcBitsArena {
mheap.go#L3017: var result *gcBitsArena
mheap.go#L3020: result = (*gcBitsArena)(sysAlloc(gcBitsChunkBytes, &memstats.gcMiscSys, "gc bits"))
mheap.go#L3033: if unsafe.Offsetof(gcBitsArena{}.bits)&7 == 0 {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |